Adds an extension to an ImageDescriptionHandle .
pascal OSErr AddImageDescriptionExtension(
ImageDescriptionHandle desc,
Handle extension,
long idType);
Adds an extension to an ImageDescriptionHandle .
pascal OSErr GetNextImageDescriptionExtensionType(
ImageDescriptionHandle desc,
long *idType);
Counts the number of extensions of a given type in an ImageDescriptionHandle .
pascal OSErr CountImageDescriptionExtensionType(
ImageDescriptionHandle desc,
long idType,
long *count);
This function, when used with the "GetNextImageDescriptionExtensionType" call, allows the application to determine the total set of extensions present in the ImageDescriptionHandle .
Returns a new handle with the data from a specified image description extension.
pascal OSErr GetImageDescriptionExtension(
ImageDescriptionHandle desc,
Handle *extension,
long idType,
long index);
Removes a specified extension from an ImageDescriptionHandle .
pascal OSErr RemoveImageDescriptionExtension(
ImageDescriptionHandle desc,
long idType,
long index);
| Previous | Chapter Contents | Chapter Top | Next |